Tables [dbo].[SystemConfigPageRef]
Properties
PropertyValue
Created10:31:40 AM Tuesday, March 02, 2010
Last Modified11:40:08 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_SystemConfigPageRef: SystemConfigPageKeySystemConfigPageKeyuniqueidentifier16
No
Indexes AK_SystemConfigPageRef: SystemConfigPageNameSystemConfigPageNamenvarchar(30)60
No
SystemConfigPageDescnvarchar(200)400
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_SystemConfigPageRef: SystemConfigPageKeyPK_SystemConfigPageRefSystemConfigPageKey
Yes
AK_SystemConfigPageRefSystemConfigPageName
Yes
SQL Script
CREATE TABLE [dbo].[SystemConfigPageRef]
(
[SystemConfigPageKey] [uniqueidentifier] NOT NULL,
[SystemConfigPageName] [nvarchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[SystemConfigPageDesc] [nvarchar] (200) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[SystemConfigPageRef] ADD CONSTRAINT [PK_SystemConfigPageRef] PRIMARY KEY CLUSTERED ([SystemConfigPageKey]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SystemConfigPageRef] ADD CONSTRAINT [AK_SystemConfigPageRef] UNIQUE NONCLUSTERED ([SystemConfigPageName]) ON [PRIMARY]
GO
Uses
Used By